home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / tip / hex.tip < prev    next >
Text File  |  1993-09-15  |  1KB  |  45 lines

  1. % This macro source file is from the four volume series
  2. % "TeX in Practice" by Stephan von Bechtolsheim, published
  3. % 1993 by Springer-Verlag, New York.
  4. % Copyright 1993 Stephan von Bechtolsheim.
  5. % No warranty or liability is assumed.
  6. % This macro may be copied freely if no fees other than
  7. % media cost or shipping charges are charged and as long
  8. % as this copyright and the following source code itself
  9. % is not changed. Please see the series for further information.
  10. %
  11. % Version: 1.0
  12. % Date: May 1, 1993
  13. %
  14. %
  15. % This source code is documented in 27.1.4.1, p. III-404.
  16. % Original source in file "macros7.TEX", starting line 400.
  17. \wlog{L: "hex.tip" ["macros7.TEX," l. 400, p. III-404]}%
  18. % This file DOES belong to format "texip."
  19. \def\Hex #1{%
  20.     {%
  21.         \count0 = #1%
  22.         \count1 = #1%
  23.         \divide\count0 by 16
  24.         \count2 = \count0
  25.         \multiply \count2 by -16
  26.         \advance \count1 by \count2
  27.         \ifnum \count0 > 0
  28.             \Hex{\count0}%
  29.         \fi
  30.         \HexDigit{\count1}% 
  31.     }%
  32. }
  33. \def\HexDigit #1{% 
  34.     {%
  35.         \count0 = #1\relax
  36.         \ifnum \count0 < 10
  37.             \number\count0          % or \the\count0
  38.         \else
  39.             \advance\count0 by -10
  40.             \advance\count0 by `A
  41.             \char\count0
  42.         \fi
  43.     }%
  44. }
  45.